home *** CD-ROM | disk | FTP | other *** search
- stop();
- Stage.showMenu = false;
- Stage.scaleMode = "noScale";
- this.createTextField("sPreload",1,50,230,500,100);
- this.sPreload.embedFonts = true;
- this.sPreload.selectable = false;
- this.myformat = new TextFormat();
- this.myformat.font = "Fiolex Girls";
- this.myformat.color = 16777215;
- this.myformat.align = "center";
- this.onEnterFrame = function()
- {
- if(preloader.getBytesLoaded() != preloader.getBytesTotal())
- {
- this.sPreload.text = "Loading Sounds: " + this.preloader.getBytesLoaded() / this.preloader.getBytesTotal() * 100;
- this.sPreload.setTextFormat(this.myformat);
- }
- else
- {
- this.sPreload.text = "";
- this.sPreload.setTextFormat(this.myformat);
- delete this.onEnterFrame;
- }
- };
-